From: Masatake YAMATO Date: Tue, 16 Mar 2004 13:12:03 +0000 (+0000) Subject: (note_mode_line_or_margin_highlight): Accept HEADER_LINE when keymap and cursor are... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23669 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c4734dbffa17641ec803e53f98ee71d463ef2003;p=emacs.git (note_mode_line_or_margin_highlight): Accept HEADER_LINE when keymap and cursor are setup. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8a3e8bdda4b..739d94c45fe 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2004-03-14 Masatake YAMATO + + * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE + when keymap and cursor are setup. + 2004-03-14 Steven Tamm * Makefile.in (XMENU_OBJ): Do not include xmenu.o if diff --git a/src/xdisp.c b/src/xdisp.c index fb66bf0beb0..11327e13102 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -20349,7 +20349,7 @@ note_mode_line_or_margin_highlight (w, x, y, area) pointer = Fget_text_property (pos, Qpointer, string); /* Change the mouse pointer according to what is under X/Y. */ - if (NILP (pointer) && area == ON_MODE_LINE) + if (NILP (pointer) && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))) { Lisp_Object map; map = Fget_text_property (pos, Qlocal_map, string);